initial commit

This commit is contained in:
Dylan Parker
2023-01-08 03:26:04 -06:00
commit cfa445db14
11 changed files with 300 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM golang:alpine
# Move to /dist directory as the place for resulting binary folder
WORKDIR /dist
# Copy binary from build to main folder
COPY ./main .
# Command to run when starting the container
ENTRYPOINT [ "/dist/main" ]