1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-24 14:26:38 -05:00

Add curl to Dockerfile

This commit is contained in:
Vince Grassia 2023-11-09 12:43:21 -05:00
parent f7507b306f
commit cbb339c2f3
No known key found for this signature in database
GPG Key ID: 9AD7505E8448CC08
2 changed files with 7 additions and 0 deletions

View File

@ -15,6 +15,7 @@ env:
jobs: jobs:
cloc: cloc:
if: false
name: CLOC name: CLOC
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
@ -30,6 +31,7 @@ jobs:
run: cloc --include-lang C#,SQL,Razor,"Bourne Shell",PowerShell,HTML,CSS,Sass,JavaScript,TypeScript --vcs git run: cloc --include-lang C#,SQL,Razor,"Bourne Shell",PowerShell,HTML,CSS,Sass,JavaScript,TypeScript --vcs git
lint: lint:
if: false
name: Lint name: Lint
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:

View File

@ -15,6 +15,11 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
fi \ fi \
&& echo "RID=$RID" > /tmp/rid.txt && echo "RID=$RID" > /tmp/rid.txt
# Add packages
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
&& rm -rf /var/lib/apt/lists/*
# Add packages # Add packages
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
RUN npm install -g gulp RUN npm install -g gulp