diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-11 22:21:56 +0500 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-11 22:21:56 +0500 |
commit | fb36b3fedf735366965365fcf4cfac488935c8d0 (patch) | |
tree | 3bfa9c88e2363f933ed84cf08336275a67aa98cc /Dockerfile | |
parent | add docker-compose.yml (diff) | |
download | void-fb36b3fedf735366965365fcf4cfac488935c8d0.tar.gz void-fb36b3fedf735366965365fcf4cfac488935c8d0.zip |
Dockerfile: remove tini
docker-compose.yml takes care of that.
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,10 +1,9 @@ FROM alpine:3.15 -RUN apk add --no-cache python3 tini +RUN apk add --no-cache python3 RUN mkdir -p /var/lib/void COPY [".", "/usr/src/"] WORKDIR /usr/src -ENTRYPOINT ["/sbin/tini", "--"] CMD ./server.py --void /var/lib/void/void.state |