Skip to content

Commit

Permalink
Update Dockerfile base image
Browse files Browse the repository at this point in the history
  • Loading branch information
kirugan committed May 20, 2024
1 parent 8c4b46f commit 71c4a67
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Stage 1: Build golang dependencies and binaries
FROM ubuntu:23.10 AS build
FROM ubuntu:24.04 AS build

ARG VM_DEBUG

# Install Alpine Dependencies
RUN apt-get update && \
# removal is temp. to fix https://github.com/orgs/community/discussions/120966
RUN rm /etc/apt/sources.list.d/microsoft-prod.list && \
apt-get update && \
apt-get install build-essential cargo git golang upx-ucl libjemalloc-dev libjemalloc2 -y

WORKDIR /app
Expand Down

0 comments on commit 71c4a67

Please sign in to comment.