15 lines
258 B
Docker
15 lines
258 B
Docker
FROM nginx:1.27-alpine
|
|
|
|
# Remove default config
|
|
RUN rm /etc/nginx/conf.d/default.conf
|
|
|
|
# Copy our nginx config
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# Copy all site files
|
|
COPY . /usr/share/nginx/html/
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|