diff --git a/client/Dockerfile b/client/Dockerfile index 9bda8c3..5da8154 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -1,4 +1,3 @@ FROM nginx as production-stage RUN mkdir /app -COPY /public /app COPY nginx.conf /etc/nginx/nginx.conf diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..2201185 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,8 @@ +version: "3.3" +services: + client: + build: client/ + ports: + - "5010:80" + volumes: + - "./client/public:/app:rw"