forked from sezero/glide
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDockerfile
35 lines (29 loc) · 776 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
FROM ubuntu:25.04
LABEL maintainer="Clemens Zangl" \
description="Docker file to build 3dfx Glide API" \
version="0.1"
# set timezone to make sure the install tzdata is successful
ARG DEBIAN_FRONTEND=noninteractive
ENV TZ=Europe/Moscow
# Make sure the image is updated, install some prerequisites,
RUN apt-get update -y
# Install GCC, Git (to checkout google test), and other helpful tools
RUN apt-get install -y --no-install-recommends \
xz-utils \
build-essential \
curl \
cmake \
git \
gcc \
tar \
nasm \
gcc-multilib \
mingw-w64 \
ca-certificates
RUN apt-get autoclean
RUN apt-get autoremove
RUN apt-get clean
RUN rm -rf /var/lib/apt/lists/*
# Start from a Bash prompt
WORKDIR /home/workspace/
CMD /bin/bash