You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
335 B
13 lines
335 B
FROM nginx:alpine |
|
|
|
COPY frontend/assets /usr/share/nginx/html/assets/ |
|
COPY frontend/css /usr/share/nginx/html/css/ |
|
COPY frontend/js /usr/share/nginx/html/js/ |
|
COPY frontend/index.html /usr/share/nginx/html/ |
|
|
|
RUN addgroup -g 3333 -S web && \ |
|
adduser -h /web -u 3333 -G web -S web && \ |
|
chown -R web:web . |
|
USER web |
|
|
|
EXPOSE 8080
|
|
|