WUT_Computer_Science/Dockerfile

9 lines
205 B
Docker
Raw Normal View History

2024-05-11 16:10:37 +02:00
# 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