12 lines
170 B
Docker
12 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"]
|