mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
8 lines
373 B
Docker
8 lines
373 B
Docker
FROM mcr.microsoft.com/devcontainers/base:ubuntu-24.04
|
|
|
|
USER root
|
|
# Install needed packages according to https://codeql.github.com/docs/codeql-overview/system-requirements/
|
|
# most come from the base image, but we need to install some additional ones
|
|
RUN DEBIAN_FRONTEND=noninteractive apt update && apt install -y sudo man-db python3.12 npm unminimize
|
|
RUN yes | unminimize
|