just need to figure out config files, everything else appears to work

This commit is contained in:
2021-08-08 22:42:40 -04:00
parent 74e3bc730e
commit fe7443daaa
7 changed files with 48 additions and 58 deletions

View File

@@ -1,3 +1,12 @@
FROM scratch
ENTRYPOINT ["/mybin"]
COPY mybin /
#FROM alpine
# Copy in the binary and settings file
COPY goInventorize-linux-amd64 /
ENV PORT=3000
# Export necessary port.
EXPOSE 3000
# Command to run when starting the container.
ENTRYPOINT ["/goInventorize-linux-amd64"]