Skip to content
Snippets Groups Projects
Commit 022d339e authored by webmanue's avatar webmanue
Browse files

set environment variables for apt-get install

- fixes build of image in CI (tzdata)
parent 522bf0ca
No related branches found
No related tags found
No related merge requests found
Pipeline #93197 failed
......@@ -14,11 +14,12 @@
# limitations under the License.
ARG BASE_IMAGE=ubuntu:focal
ARG DEBIAN_FRONTEND=noninteractive
FROM $BASE_IMAGE
RUN apt-get update && apt-get install -y \
RUN apt-get update && \
DEBIAN_FRONTEND="noninteractive" \
TZ="Europe/Zurich" \
apt-get install -y \
clang-format \
cmake \
g++ \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment