-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathDockerfile
More file actions
41 lines (36 loc) · 794 Bytes
/
Copy pathDockerfile
File metadata and controls
41 lines (36 loc) · 794 Bytes
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
36
37
38
39
40
41
# Use an official Ubuntu as a parent image
FROM ubuntu:latest
# Set the working directory
WORKDIR /Docker
# Copy the Docker directory to the container
COPY Docker /Docker
# Install necessary packages
RUN apt-get update && apt-get install -y \
git \
cmake \
ninja-build \
clang \
systemtap-sdt-dev \
libbsd-dev \
linux-libc-dev \
curl \
tar \
grep \
mawk \
patchelf \
libgnustep-base-dev \
libobjc4 \
libgnutls28-dev \
libgcrypt20-dev \
libxml2-dev \
libffi-dev \
libnsl-dev \
zlib1g-dev \
libicu-dev \
libstdc++6 \
libgcc-9-dev \
&& rm -rf /var/lib/apt/lists/*
# Ensure Docker.sh is executable
RUN chmod +x /Docker/Docker.sh
# Set Docker.sh as the entry point
ENTRYPOINT ["/Docker/Docker.sh"]