Some checks reported errors
continuous-integration/drone Build encountered an error
19 lines
394 B
YAML
Executable File
19 lines
394 B
YAML
Executable File
version: '3.3'
|
|
|
|
name: oonyeje-portfolio
|
|
services:
|
|
app:
|
|
image: oonyeje-portfolio
|
|
build:
|
|
context: ./
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "6000:3000"
|
|
volumes:
|
|
- .:/home/node/app
|
|
- ./node_modules:/home/node/app/node_modules
|
|
working_dir: /home/node/app/
|
|
command: sh -c "yarn install && yarn dev"
|
|
env_file:
|
|
- .env.local
|