forked from eclipse-emfcloud/coffee-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
106 lines (77 loc) · 3.06 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# Setup dev environment
FROM node:16-bullseye as build
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get install -y git bash maven openjdk-17-jdk
# Theia build dependencies
RUN apt-get -y install --no-install-recommends \
software-properties-common \
libxkbfile-dev \
libsecret-1-dev \
build-essential libssl-dev
# Build the Java backend
FROM build AS backend
WORKDIR /coffee-editor
COPY ./backend ./backend
WORKDIR /coffee-editor/backend/releng/org.eclipse.emfcloud.coffee.parent/
RUN mvn clean verify
# Build frontend
FROM build AS frontend
WORKDIR /coffee-editor
COPY ./client ./client
WORKDIR /coffee-editor/client
RUN yarn install && \
yarn production
WORKDIR /coffee-editor
COPY --from=backend /coffee-editor/backend ./backend
WORKDIR /coffee-editor/client
RUN yarn copy:servers
RUN yarn autoclean --init && \
echo *.ts >> .yarnclean && \
echo *.ts.map >> .yarnclean && \
echo *.spec.* >> .yarnclean && \
yarn autoclean --force && \
yarn cache clean
# Build production image
FROM node:16-bullseye-slim as production
ENV DEBIAN_FRONTEND noninteractive
# Theia dependencies/Java
RUN apt-get update &&\
apt-get -y install --no-install-recommends \
software-properties-common \
libxkbfile-dev \
libsecret-1-dev ca-certificates-java openjdk-17-jdk \
build-essential libssl-dev wget gnupg git gdb
# C/C++ dependencies
RUN add-apt-repository 'deb http://apt.llvm.org/bullseye/ llvm-toolchain-bullseye-14 main'
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
RUN apt-get update &&\
apt-get -y install clangd-14 cmake &&\
apt-get purge -y && \
apt-get clean
RUN update-alternatives --install /usr/bin/clangd clangd /usr/bin/clangd-14 100
# Make readable for root only
RUN chmod -R 750 /var/run/
# Create a user to not run the container as root
RUN useradd -ms /bin/bash theia
# Copy frontend from build-stage
WORKDIR /coffee-editor
COPY --chown=theia:theia --from=frontend /coffee-editor/client ./client
# Copy model to production stage (for model comparison)
COPY --from=backend /coffee-editor/backend/plugins/org.eclipse.emfcloud.coffee.model/target/org.eclipse.emfcloud.coffee.model-0.8.0-SNAPSHOT.jar \
/coffee-editor/backend/plugins/org.eclipse.emfcloud.coffee.model/target/org.eclipse.emfcloud.coffee.model-0.8.0-SNAPSHOT.jar
# Copy favicon
RUN cp ./client/favicon.ico ./client/browser-app/lib
RUN sed -i 's/<\/head>/<link rel="icon" href="favicon.ico" \/><\/head>/g' client/browser-app/lib/index.html
USER theia
# Set up git repo in workspace for comparison
WORKDIR /coffee-editor/client/workspace/SuperBrewer3000
RUN git config --global user.name "Test User" && \
git config --global user.email "test@example.com" && \
git init && \
git add . && \
git commit -m "init"
WORKDIR /coffee-editor/client/browser-app/
EXPOSE 3000
ENTRYPOINT [ "node", "/coffee-editor/client/browser-app/src-gen/backend/main.js" ]
CMD [ "/coffee-editor/client/workspace/SuperBrewer3000", "--hostname=0.0.0.0","--port=3000","--plugins=local-dir:/coffee-editor/client/browser-app/plugins"]