micrach/Dockerfile

8 lines
172 B
Docker
Raw Normal View History

FROM busybox
2021-08-28 19:30:14 +03:00
WORKDIR /app
COPY templates/ templates/
COPY static/ static/
2021-11-18 01:26:28 +03:00
COPY migrations/ migrations/
2021-08-28 19:30:14 +03:00
COPY micrach ./
RUN chmod +x /app/micrach
2021-08-29 09:50:22 +03:00
ENTRYPOINT ["/app/micrach"]