Added dockerfile and getting port from environment variable

This commit is contained in:
Dmitriy Shishkov 2020-11-10 23:14:35 +05:00
parent 220dcf18ab
commit bc06090437
No known key found for this signature in database
GPG Key ID: D76D70029F55183E
2 changed files with 8 additions and 1 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM node:14.4.0
USER root
WORKDIR /backend
COPY . /backend
RUN yarn
RUN yarn build
CMD [ "node", "./dist/index.js" ]

View File

@ -51,7 +51,7 @@ const server = new ApolloServer({
server.applyMiddleware({ app })
const port = process.env.PORT || 4000
const port = process.env.BACKEND_PORT || 4000
app.listen(port, () => {
console.log(`Server ready at http://localhost:${port}`)