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.
10 lines
254 B
10 lines
254 B
|
8 months ago
|
FROM nginx:stable-alpine
|
||
|
|
|
||
|
|
RUN apk --no-cache add tzdata && cp /usr/share/zoneinfo/Asia/Seoul /etc/localtime
|
||
|
|
|
||
|
|
COPY default.conf /etc/nginx/conf.d/default.conf
|
||
|
|
|
||
|
|
COPY dist/. /usr/share/nginx/html/autoflow
|
||
|
|
EXPOSE 80
|
||
|
|
ENTRYPOINT ["nginx", "-g", "daemon off;"]
|