mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-23 11:51:08 +00:00
copy everything into docker container
This commit is contained in:
parent
9e321658ed
commit
73f77b5667
2 changed files with 3 additions and 5 deletions
|
@ -6,10 +6,8 @@ COPY package.json /app/
|
|||
|
||||
RUN npm install --quiet
|
||||
|
||||
COPY config /app/config
|
||||
COPY test /app/test
|
||||
COPY app /app/app
|
||||
COPY app.coffee /app
|
||||
|
||||
COPY . /app
|
||||
RUN npm run compile:all
|
||||
|
||||
FROM node:8.9.1
|
||||
|
|
|
@ -4,7 +4,7 @@ settings =
|
|||
internal:
|
||||
filestore:
|
||||
port: 3009
|
||||
host: "localhost"
|
||||
host: process.env['LISTEN_ADDRESS'] or "localhost"
|
||||
|
||||
filestore:
|
||||
# Which backend persistor to use.
|
||||
|
|
Loading…
Reference in a new issue