0
Fork 0
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:
mathieu.brunot 2019-02-15 18:10:35 +01:00
parent a984a2795d
commit c9cf540d8e
No known key found for this signature in database
GPG key ID: 81584BEAF692D7E0
3 changed files with 7 additions and 4 deletions

View file

@ -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

View file

@ -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; \

View file

@ -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