blob: 42fa0873d783749d393570ad3a425adc2b279fe6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
FROM alpine:3.15
RUN apk add --no-cache python3
RUN mkdir -p /var/lib/void
COPY [".", "/usr/src/"]
WORKDIR /usr/src
# I don't know why, but in Docker, simple print() statements show nothing:
# https://stackoverflow.com/q/29663459
# Fixed by adding the -u flag:
CMD ["python3", "-u", "./server.py", "--void", "/var/lib/void/void.state"]
|