mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 06:51:08 +01:00
b4cc681112
docker: Cleanup for consistent syntax.
16 lines
258 B
Docker
16 lines
258 B
Docker
FROM jevolk/construct:ubuntu-22.04-base
|
|
|
|
ENV CC gcc-8
|
|
ENV CXX g++-8
|
|
|
|
ENV packages="\
|
|
gcc-8 \
|
|
g++-8 \
|
|
"
|
|
|
|
RUN true \
|
|
&& apt-get update \
|
|
&& apt-get install --no-install-recommends -y ${packages} \
|
|
&& apt-get clean -y \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& true
|