Skip to content

Commit

Permalink
Fix some typos and use apt-get instead of apt to avoid warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
headcr4sh committed Apr 28, 2023
1 parent bddc624 commit b941390
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login do docker.io
- name: Login to docker.io
if: ${{ github.actor != 'dependabot[bot]' }}
uses: docker/login-action@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ FROM docker.io/openjdk:17-slim
RUN apt-get -y update \
&& apt-get -y install bash curl gawk git jq shellcheck

# Install nodejs 14
# Install nodejs 18
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash -
RUN apt -y install nodejs
RUN apt-get -y install nodejs

ARG TYPESCRIPT_VERSION="4.9.4"
RUN npm install -g typescript@${TYPESCRIPT_VERSION}
Expand Down

0 comments on commit b941390

Please sign in to comment.