micrach/Dockerfile
2021-11-18 00:26:28 +02:00

8 lines
172 B
Docker

FROM busybox
WORKDIR /app
COPY templates/ templates/
COPY static/ static/
COPY migrations/ migrations/
COPY micrach ./
RUN chmod +x /app/micrach
ENTRYPOINT ["/app/micrach"]