Dockerfile

This commit is contained in:
Alexander Kiryukhin 2022-05-02 14:19:30 +03:00
parent ff13e5f423
commit 8a71e6d273
No known key found for this signature in database
GPG key ID: 6DF7A2910D0699E9

View file

@ -14,6 +14,6 @@ RUN apk update \
&& update-ca-certificates 2>/dev/null || true && update-ca-certificates 2>/dev/null || true
WORKDIR /usr/app WORKDIR /usr/app
COPY --from=builder /usr/src/service . COPY --from=builder /usr/src/service .
COPY static . COPY static ./static
COPY tpl . COPY tpl ./tpl
CMD ["service"] CMD ["/usr/app/service"]