mirror of
https://github.com/KevinMidboe/http-200.git
synced 2025-10-28 17:10:29 +00:00
12 lines
136 B
Docker
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"]
|