mirror of
https://github.com/ffrgb/site-ffrgb.git
synced 2024-12-27 04:41:53 +01:00
6 lines
158 B
Plaintext
6 lines
158 B
Plaintext
|
FROM ubuntu:22.04
|
||
|
|
||
|
ADD ./scripts/install_build_dependencies.sh /
|
||
|
RUN /install_build_dependencies.sh \
|
||
|
&& apt-get clean \
|
||
|
&& rm -r /var/lib/apt/lists/*
|