8f47c93369
* Removed duplicate entry * Started introducing ui dockerfile * frozen lockfiles * Removed unnecessary steps from Dockerfile.e2e * Added start instruction * Added docker-compose with instructions to UI * Updated readme. * Removed unnecessary command
14 lines
249 B
YAML
14 lines
249 B
YAML
version: '2.4'
|
|
services:
|
|
ui:
|
|
build:
|
|
context: ..
|
|
dockerfile: ui/Dockerfile
|
|
ports:
|
|
- "${PORT}:${PORT}"
|
|
env_file: ./.env
|
|
environment:
|
|
- NODE_ENV=production
|
|
restart: unless-stopped
|
|
entrypoint: yarn start
|