mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 16:03:11 +02:00
11 lines
177 B
Docker
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
|