Skip to content
Snippets Groups Projects
Commit ff2ec7fc authored by dheninli's avatar dheninli
Browse files

Finished Dockerfile and removed useless ones

parent b3f828e8
No related branches found
No related tags found
1 merge request!37Tx services p19 test
......@@ -4,6 +4,8 @@ ENV DRYRUN=1
COPY *.sh ./
RUN apk add --no-cache curl jq
RUN apk add --no-cache --update curl jq
ENTRYPOINT /bin/sh ./run.sh
......@@ -2,9 +2,7 @@ version: '3'
services:
wekan-cleaner:
build:
context: ./
dockerfile: Dockerfile-clean
image: registry.picasoft.net/pica-wekan-clean
environment:
- DRYRUN=1
container_name: wekan_clean
from alpine
ENV DRYRUN=true
# COPY test.sh ./
RUN apk add --no-cache curl jq
RUN if [ $DRYRUN = false ]; \
then \
export ARGS="-d";\
else \
export ARGS="-t";\
fi
ENTRYPOINT /bin/sh ./test.sh
version: '3'
services:
wekan-cleaner:
build:
context: ./
dockerfile: Dockerfile-clean
environment:
- DRYRUN=false
container_name: wekan_clean
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment