Update Dockerfile to fix COPY command
All checks were successful
Actions Build Binary / Build-Binary (push) Successful in 4s
Actions Build Binary / Build-Docker-Image (push) Successful in 14s

This commit is contained in:
Alex Borisov 2024-02-01 21:47:10 +03:00
parent 12fece4ebc
commit 3fab4d1717

View File

@ -1,4 +1,4 @@
FROM alpine
WORKDIR /root/
COPY /app/main .
COPY main .
CMD ["./main"]