Update Dockerfile to use Node 18

This commit is contained in:
Prathamesh Musale 2024-03-12 14:27:50 +05:30
parent d896fa480f
commit e3b842f2a8
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
path: "./laconic2d/" path: "./laconic2d/"
repository: cerc-io/laconic2d repository: deep-stack/laconic2d # TODO: Use cerc-io/laconic2d
fetch-depth: 0 fetch-depth: 0
ref: main ref: main
- name: Environment - name: Environment

View File

@ -1,6 +1,6 @@
# Originally from: https://github.com/devcontainers/images/blob/main/src/javascript-node/.devcontainer/Dockerfile # Originally from: https://github.com/devcontainers/images/blob/main/src/javascript-node/.devcontainer/Dockerfile
# [Choice] Node.js version (use -bullseye variants on local arm64/Apple Silicon): 18, 16, 14, 18-bullseye, 16-bullseye, 14-bullseye, 18-buster, 16-buster, 14-buster # [Choice] Node.js version (use -bullseye variants on local arm64/Apple Silicon): 18, 16, 14, 18-bullseye, 16-bullseye, 14-bullseye, 18-buster, 16-buster, 14-buster
ARG VARIANT=16-bullseye ARG VARIANT=18-bullseye
FROM node:${VARIANT} FROM node:${VARIANT}
ARG USERNAME=node ARG USERNAME=node

View File

@ -1,2 +1,2 @@
#!/usr/bin/env bash #!/usr/bin/env bash
docker build -t cerc/registry-sdk-tester:local -f Dockerfile . docker build -t cerc/registry-sdk-tester:local -f Dockerfile . --no-cache