mirror of
https://github.com/dreamstarsky/runbin.git
synced 2026-05-15 14:23:07 +00:00
fixd #2
This commit is contained in:
16
workerEnv/cpp_gcc-latest.Dockerfile
Normal file
16
workerEnv/cpp_gcc-latest.Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
# Dockerfile for Arch Linux with latest GCC/G++ and time command
|
||||
|
||||
# Use the official Arch Linux base image
|
||||
FROM archlinux:latest
|
||||
|
||||
RUN pacman -Syu --noconfirm && \
|
||||
pacman -S --noconfirm base-devel time && \
|
||||
rm -rf /var/cache/pacman/pkg/*
|
||||
|
||||
RUN echo "Verifying installations..." && \
|
||||
gcc --version && \
|
||||
g++ --version && \
|
||||
/usr/bin/time --version && \
|
||||
make --version
|
||||
|
||||
CMD ["bash"]
|
||||
Reference in New Issue
Block a user