🐳
All checks were successful
continuous-integration/drone/tag Build is passing

This commit is contained in:
coward 2024-05-08 14:59:40 +08:00
parent 282c4886b3
commit 9611b35950

View File

@ -15,9 +15,12 @@ RUN ls -lh && chmod +x ./app
FROM alpine
COPY --from=build /build/app /bin
COPY --from=build /build/template/* /template/
WORKDIR /app
WORKDIR db
RUN ls -al /bin/ | grep 'app'
COPY --from=build /build/app /app
COPY --from=build /build/template/* /app/template/
ENTRYPOINT ["/bin/app"]
RUN ls -al /app/ | grep 'app'
ENTRYPOINT ["/app/app"]