mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 16:03:11 +02:00
9 lines
205 B
Docker
9 lines
205 B
Docker
# Use a lightweight base image
|
|
FROM alpine:latest
|
|
|
|
# Install a minimal HTTP server
|
|
RUN apk add --no-cache httpie
|
|
|
|
# Command to run when the container starts
|
|
CMD echo 'Hello, World!' | http-server -p 8080
|