Skip to content

Commit

Permalink
Change version to 1.0.4 and update Node requirement to 16
Browse files Browse the repository at this point in the history
  • Loading branch information
olkitu committed Feb 15, 2022
1 parent 06daa43 commit 18f356a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
### STAGE 1: Build ###
FROM node:14-alpine AS build
FROM node:16-alpine AS build
WORKDIR /usr/src/app
COPY package.json yarn.lock ./
RUN yarn
COPY . .
RUN yarn run build:ssr

### STAGE 2: Run ###
FROM node:14-alpine
FROM node:16-alpine
RUN apk --no-cache add curl
WORKDIR /usr/src/app
COPY --from=build /usr/src/app/dist/cacombos ./dist/cacombos
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14-alpine
FROM node:16-alpine

RUN apk --no-cache add git \
&& yarn global add @angular/cli
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ docker build -t cacombos/cacombos-ui .

Requirements:

* NodeJS 14
* NodeJS 16
* Angular CLI
* Yarn

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cacombos-ui",
"version": "1.0.3",
"version": "1.0.4",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down

0 comments on commit 18f356a

Please sign in to comment.