-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
31 lines (23 loc) · 676 Bytes
/
Dockerfile
File metadata and controls
31 lines (23 loc) · 676 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
FROM debian:buster
EXPOSE 80
COPY . /gdb-frontend-live
COPY ./container/nginx/gflive.conf /etc/nginx/sites-available/gflive.conf
RUN apt update -y && \
apt upgrade -y && \
apt install -y gcc \
build-essential \
libssl-dev \
uuid-dev \
zlib1g-dev \
make \
gdb \
tmux \
procps \
python3 \
nginx
RUN adduser gflive
RUN rm /etc/nginx/sites-enabled/default
RUN ln -s /etc/nginx/sites-available/gflive.conf /etc/nginx/sites-enabled/gflive.conf
WORKDIR /gdb-frontend-live
RUN make
CMD ./container/startup.sh