mirror of
https://github.com/warp-tech/warpgate.git
synced 2025-02-22 22:43:29 +08:00
docker: bumped base image
This commit is contained in:
parent
055a12ba32
commit
828dc60e2c
1 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue