Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
migrate to bitnami/nginx (via #167)
Browse files Browse the repository at this point in the history
  • Loading branch information
eroshenkoam authored Oct 7, 2022
1 parent 1e662d8 commit 1e53d28
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
FROM nginx:alpine
FROM bitnami/nginx

COPY public /usr/share/nginx/html
COPY public /app
COPY nginx/site.conf /opt/bitnami/nginx/conf/server_blocks/site.conf

EXPOSE 80
6 changes: 6 additions & 0 deletions nginx/site.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
server {
listen 0.0.0.0:80 default_server;

root /app;
index index.html;
}

0 comments on commit 1e53d28

Please sign in to comment.