Skip to content

Commit

Permalink
change docker image node version from 18-alpine to 18 in build step
Browse files Browse the repository at this point in the history
  • Loading branch information
Studsministern committed May 9, 2024
1 parent 6bea96a commit b094ef1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ och följer [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- `addHehe`-APIn så att denna dessutom skapar framsidan för tidningen och sparar motsvarande `coverId`
- Enhetstester och reducer-tester för Hehe så att dessa är kompatibla med tilläggen ovan
- Abstraherat ut uppladdning av filer i integrationstester till filen `fileUpload.ts`
- Bytt från node 18-alpine till node 18 i Dockerfilen

## [1.9.0] - 2024-03-22
### Tillagt
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG NODE_VERSION=18-alpine
ARG NODE_VERSION=18
ARG PROJECT=ekorre
ARG WORKING_DIR=/srv/app

Expand Down Expand Up @@ -34,7 +34,7 @@ RUN mkdir public
##
## Create runtime image
##
FROM node:${NODE_VERSION}
FROM node:${NODE_VERSION}-alpine

ARG WORKING_DIR
ARG PROJECT
Expand Down

0 comments on commit b094ef1

Please sign in to comment.