10 lines
147 B
Docker
10 lines
147 B
Docker
FROM busybox
|
|
|
|
RUN adduser -D static
|
|
USER static
|
|
WORKDIR /home/static
|
|
|
|
COPY ./html /home/static
|
|
CMD ["busybox", "httpd", "-f", "-v", "-p", "3000"]
|
|
|