mirror of
https://github.com/penpot/penpot.git
synced 2025-01-08 07:50:43 -05:00
💚 Fix permissions and paths
This commit is contained in:
parent
a984a2795d
commit
c9cf540d8e
3 changed files with 7 additions and 4 deletions
|
@ -23,10 +23,10 @@ before_script:
|
|||
- env | sort
|
||||
|
||||
script:
|
||||
- ./scripts/build-tests
|
||||
- ./frontend/scripts/build-tests
|
||||
- nvm install $NODE_VERSION
|
||||
- node --version
|
||||
- node out/tests.js
|
||||
- node ./frontend/out/tests.js
|
||||
- ./manage.sh release-local
|
||||
- ./manage.sh release-docker
|
||||
|
||||
|
@ -38,4 +38,4 @@ notifications:
|
|||
email: false
|
||||
|
||||
env:
|
||||
- NODE_VERSION=10.15.1
|
||||
- NODE_VERSION=7.7.1
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
FROM monogramm/docker-uxbox-builder:latest
|
||||
|
||||
ENV LEIN_ROOT=TRUE
|
||||
|
||||
# Copy backend source and build release
|
||||
COPY . /home/uxbox/backend
|
||||
RUN set -ex; \
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
FROM monogramm/docker-uxbox-builder:latest
|
||||
|
||||
ENV API_URL http://127.0.0.1:6060/api
|
||||
ENV API_URL=http://127.0.0.1:6060/api
|
||||
ENV LEIN_ROOT=TRUE
|
||||
|
||||
# Copy frontend source and build release
|
||||
COPY . /home/uxbox/frontend
|
||||
|
|
Loading…
Reference in a new issue