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

Commit 1e53d28

Browse files
author
Artem Eroshenko
authored
migrate to bitnami/nginx (via #167)
1 parent 1e662d8 commit 1e53d28

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
FROM nginx:alpine
1+
FROM bitnami/nginx
22

3-
COPY public /usr/share/nginx/html
3+
COPY public /app
4+
COPY nginx/site.conf /opt/bitnami/nginx/conf/server_blocks/site.conf
45

56
EXPOSE 80

nginx/site.conf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
server {
2+
listen 0.0.0.0:80 default_server;
3+
4+
root /app;
5+
index index.html;
6+
}

0 commit comments

Comments
 (0)