Skip to content

Commit

Permalink
Bump node from 16 to 18
Browse files Browse the repository at this point in the history
Signed-off-by: Taylor Smock <[email protected]>
  • Loading branch information
tsmock committed Feb 20, 2024
1 parent f826990 commit ce942ab
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
frontend-code-test:
resource_class: large
docker:
- image: cimg/node:16.20
- image: cimg/node:18.19
working_directory: /home/circleci/tasking-manager
steps:
- checkout
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
working_directory: /home/circleci/tasking-manager
resource_class: medium
docker:
- image: cimg/python:3.10.7-node
- image: cimg/python:3.10-node
steps:
- checkout
- aws-cli/setup:
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
working_directory: /home/circleci/tasking-manager
resource_class: large
docker:
- image: cimg/python:3.10.7-node
- image: cimg/python:3.10-node
parameters:
stack_name:
description: "the name of the stack for cfn-config"
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker/Dockerfile.frontend
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16 as build
FROM node:18 as build

WORKDIR /usr/src/app/frontend
COPY frontend .
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker/Dockerfile.frontend_development
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN git clone --depth=1 git://github.com/hotosm/tasking-manager.git \

RUN rm -rf backend/ migrations/

FROM node:16 as build
FROM node:18 as build

WORKDIR /usr/src/app

Expand Down
2 changes: 1 addition & 1 deletion scripts/docker/tasking-manager/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV PATH="/usr/src/app/__pypackages__/${PYTHON_IMG_TAG}/bin:$PATH" \
# INSTALLATION

# Add repository for node
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash -

# Install dependencies
RUN apt-get update \
Expand Down

0 comments on commit ce942ab

Please sign in to comment.