Skip to content
This repository has been archived by the owner on Jul 25, 2023. It is now read-only.

Commit

Permalink
Bumped nodejs version to v14; Bumped TS dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
SEQUOIIA committed Mar 21, 2023
1 parent ef63853 commit 8e1ad41
Show file tree
Hide file tree
Showing 3 changed files with 6,871 additions and 4,507 deletions.
6 changes: 3 additions & 3 deletions server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# https://github.com/nodejs/docker-node/blob/6bc7fe5d018f2235cdcd2f7681990cee9d096497/13/alpine3.11/Dockerfile
## Node js app builder ##
FROM node:13.10.1-alpine3.11 AS Builder
FROM node:14-alpine AS Builder

WORKDIR /app

COPY package.json .
RUN npm install
RUN npm install

COPY webpack.config.js .
COPY tsconfig.json .
Expand All @@ -15,7 +15,7 @@ RUN npm run build


## Node js app runner ##
FROM node:13.10.1-alpine3.11 As Runner
FROM node:14-alpine As Runner

# Install curl & expect
RUN apk add --update \
Expand Down
Loading

0 comments on commit 8e1ad41

Please sign in to comment.