Skip to content

Commit

Permalink
Merge pull request #15 from DNXLabs/upgrading_node
Browse files Browse the repository at this point in the history
Upgrading node from 14 to 20
  • Loading branch information
mvsnogueira-dnx authored Apr 29, 2024
2 parents 010eb3b + 505671d commit 10f7b93
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 32 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.12
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: 3.12
- name: Install dependencies and run job
run: |
cd .github/automation
Expand Down
25 changes: 0 additions & 25 deletions .github/workflows/security.yml

This file was deleted.

11 changes: 6 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14-alpine
FROM node:20-alpine

ENV SERVERLESS [email protected]

Expand All @@ -7,7 +7,7 @@ RUN apk --no-cache update && \
docker \
python3 \
python3-dev \
py-pip \
py3-pip \
ca-certificates \
groff \
less \
Expand All @@ -22,9 +22,10 @@ RUN apk --no-cache update && \
openssh \
postgresql-dev \
yarn && \
pip --no-cache-dir install awscli virtualenv && \
python3 -m venv /venv && \
source /venv/bin/activate && \
pip install --no-cache-dir awscli virtualenv && \
update-ca-certificates && \
rm -rf /var/cache/apk/* && \
yarn global add $SERVERLESS

WORKDIR /work
WORKDIR /work

0 comments on commit 10f7b93

Please sign in to comment.