Files
http-200/Dockerfile
2024-11-07 11:11:44 +01:00

12 lines
136 B
Docker

# Use the scratch base image
FROM scratch
WORKDIR /app
COPY server .
# Expose port 80
EXPOSE 80
# Run the binary
CMD ["/app/server"]