WUT_Computer_Science/Dockerfile

11 lines
177 B
Docker

FROM alpine:latest
# Install dependencies
RUN apk add --no-cache httpie
# Set the default listening port
ENV PORT 8080
# Command to start the server
CMD http-server -p $PORT