calling-card/Dockerfile

12 lines
170 B
Docker
Raw Normal View History

2024-12-30 12:21:40 +01:00
# 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"]