mirror of
https://github.com/pockethost/pockethost.git
synced 2026-03-11 11:14:56 +00:00
17 lines
349 B
YAML
17 lines
349 B
YAML
version: '3'
|
|
|
|
services:
|
|
build:
|
|
env_file:
|
|
- .env.local
|
|
build:
|
|
context: ..
|
|
dockerfile: Dockerfile
|
|
container_name: build
|
|
working_dir: /src
|
|
command: bash -c "yarn && yarn run patch && yarn build"
|
|
volumes:
|
|
- ./mount/cache/go:/go
|
|
- ./mount/cache/yarn:/usr/local/share/.cache/yarn/v6
|
|
- ..:/src
|