calling-card/Dockerfile
2024-12-30 12:21:40 +01:00

11 lines
170 B
Docker

# https://hub.docker.com/_/busybox/
FROM busybox:1
RUN adduser -D static
USER static
WORKDIR /home/static
COPY . .
CMD ["busybox", "httpd", "-f", "-v", "-p", "8080"]