11 lines
266 B
Docker
11 lines
266 B
Docker
FROM nginx
|
|
RUN mkdir -p /data \
|
|
&& cd /data \
|
|
&& mkdir static \
|
|
&& mkdir upload \
|
|
&& mkdir upload-video \
|
|
&& mkdir upload-note
|
|
|
|
COPY default.conf /etc/nginx/conf.d/default.conf
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
COPY dist /usr/share/nginx/html |