Init commit

This commit is contained in:
2024-11-07 10:54:06 +01:00
commit d0bed89029
6 changed files with 206 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
# Use the scratch base image
FROM scratch
WORKDIR /app
COPY server .
# Expose port 80
EXPOSE 80
# Run the binary
CMD ["/app/server"]