-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
37 lines (29 loc) · 992 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
36
37
FROM ubuntu:20.04
# 環境変数の設定
ENV DEBIAN_FRONTEND=noninteractive
ENV XDG_RUNTIME_DIR=/run/user/0
ENV EGL_LOG_LEVEL=debug
# 必要なパッケージのインストール
RUN apt-get update && apt-get install -y \
weston \
xwayland \
build-essential \
cmake \
wayland-protocols \
libwayland-dev \
libegl1-mesa-dev \
libgles2-mesa-dev \
&& ln -fs /usr/share/zoneinfo/Asia/Tokyo /etc/localtime \
&& dpkg-reconfigure --frontend noninteractive tzdata \
&& rm -rf /var/lib/apt/lists/*
# アプリケーションのソースコードをコンテナにコピー
COPY . /app
# 作業ディレクトリの設定
WORKDIR /app
# XDG_RUNTIME_DIR の作成と権限設定
RUN mkdir -p /run/user/0 && chmod 0700 /run/user/0
# ビルドディレクトリの作成
RUN if [ -d "build" ]; then rm -r build; fi
RUN mkdir -p build
RUN bash internal_build.sh
CMD weston --backend=x11-backend.so & sleep 1 && ./build/my_wayland_client >./log/run.txt