PromucFlow_constructor/app/client/Dockerfile.release
Arpit Mohan 868aa60ef5 Adding conditional variables to gitlab-ci
Also adding different Dockerfiles for release & prod. This is because in the prod version, we don't want the variable REACT_APP_BASE_URL to be set in the compiled files. This is set by nginx
2020-03-17 13:40:56 +00:00

8 lines
132 B
Docker

FROM nginx:1.17.9-alpine
COPY ./build /var/www/appsmith
RUN ls -al /var/www/appsmith
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]