docker: bumped base image

This commit is contained in:
Eugene Pankov 2022-10-30 11:06:05 +01:00
parent 055a12ba32
commit 828dc60e2c
No known key found for this signature in database
GPG key ID: 5896FCBBDD1CF4F4

View file

@ -1,8 +1,9 @@
FROM rust:bullseye AS build
# syntax=docker/dockerfile:1.3-labs
FROM rust:1.64.0-bullseye AS build
ENV DEBIAN_FRONTEND noninteractive
RUN curl -fsSL https://deb.nodesource.com/setup_17.x | bash - \
RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - \
&& apt-get update \
&& apt-get install -y nodejs openjdk-17-jdk \
&& rm -rf /var/lib/apt/lists/* \
@ -17,7 +18,7 @@ RUN cd /opt/warpgate \
&& just yarn build \
&& cargo build --release
FROM debian:bullseye
FROM debian:bullseye-20221024
LABEL maintainer=heywoodlh
ENV DEBIAN_FRONTEND noninteractive