Skip to content

Commit

Permalink
deps(Dockerfile): Bump dockerfile versions
Browse files Browse the repository at this point in the history
Signed-off-by: Cezar Craciunoiu <[email protected]>
  • Loading branch information
craciunoiuc committed Feb 7, 2024
1 parent 3330916 commit d70fe8e
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,14 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
ARG DEBIAN_VERSION=stable-20210902-slim
ARG NGINX_VERSION=1.21.3-alpine
ARG DEBIAN_VERSION=bookworm-20230725

FROM debian:${DEBIAN_VERSION} AS devenv

LABEL MAINTAINER="Alexander Jung <[email protected]>"

ARG BUILD_REF=latest
ARG NODE_VERSION=17
ARG NODE_VERSION=20

ENV NODE_ENV=development

Expand All @@ -50,7 +49,7 @@ RUN set -xe; \
g++ \
lsb-release \
gnupg; \
curl -sLf -o /dev/null "https://deb.nodesource.com/node_${NODE_VERSION}.x/dists/buster/Release"; \
curl -sLf -o /dev/null "https://deb.nodesource.com/node_${NODE_VERSION}.x/dists/bookworm/Release"; \
curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -; \
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -; \
echo "deb https://deb.nodesource.com/node_${NODE_VERSION}.x buster main" > /etc/apt/sources.list.d/nodesource.list; \
Expand All @@ -59,5 +58,4 @@ RUN set -xe; \
apt-get install -y \
nodejs; \
npm install; \
npm install -g vsce

npm install -g @vscode/vsce

0 comments on commit d70fe8e

Please sign in to comment.