chore: Move Dockerfile to Alpine

closes #1020
This commit is contained in:
Tom Moor 2019-08-21 08:19:27 -07:00
parent 929722e1c1
commit cf18b952a4
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM node:8.11
FROM node:8.11-alpine
ENV PATH /opt/outline/node_modules/.bin:/opt/node_modules/.bin:$PATH
ENV NODE_PATH /opt/outline/node_modules:/opt/node_modules

View File

@ -1,6 +1,6 @@
up:
docker-compose up -d redis postgres s3
docker-compose run --rm outline bash -c "yarn && yarn sequelize db:migrate"
docker-compose run --rm outline /bin/sh -c "yarn && yarn sequelize db:migrate"
docker-compose up outline
build: