mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-21 22:02:34 +03:00
8 lines
172 B
Docker
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"] |