Added dockerfile and getting port from environment variable
This commit is contained in:
parent
220dcf18ab
commit
bc06090437
7
Dockerfile
Normal file
7
Dockerfile
Normal 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" ]
|
@ -51,7 +51,7 @@ const server = new ApolloServer({
|
|||||||
|
|
||||||
server.applyMiddleware({ app })
|
server.applyMiddleware({ app })
|
||||||
|
|
||||||
const port = process.env.PORT || 4000
|
const port = process.env.BACKEND_PORT || 4000
|
||||||
|
|
||||||
app.listen(port, () => {
|
app.listen(port, () => {
|
||||||
console.log(`Server ready at http://localhost:${port}`)
|
console.log(`Server ready at http://localhost:${port}`)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user