Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ node_modules/

# Specific Files
config.json
service-account-credentials.json

# File Types
*.envrc
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# DEVELOPMENT
FROM node:10 AS development
FROM node:20 AS development
WORKDIR /usr/src/app
COPY package.json .
RUN npm install
Expand All @@ -9,7 +9,7 @@ EXPOSE 3000
CMD npm run start:dev

# PRODUCTION
FROM node:10.15-alpine AS release
FROM node:20-alpine AS release
WORKDIR /usr/src/app
COPY . .
COPY --from=development /usr/src/app/node_modules /usr/src/app/node_modules
Expand Down
1 change: 1 addition & 0 deletions envrc.template
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ PORT=3000
PYTHON_APP=live-tracking
RELEASE_URL=http://localhost:3001/
TOKEN=TOKEN
FCM_AUTH_KEY_PATH=FCM_AUTH_KEY_PATH
Loading