forked from PrairieLearn/PrairieLearn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
55 lines (48 loc) · 2.39 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
# syntax=docker/dockerfile-upstream:master-labs
FROM prairielearn/plbase:latest
ENV PATH="/PrairieLearn/node_modules/.bin:$PATH"
# This copies in all the `package.json` files in `apps` and `packages`, which
# Yarn needs to correctly install all dependencies in our workspaces.
# The `--parents` flag is used to preserve parent directories for the sources.
#
# We also need to copy both the `.yarn` directory and the `.yarnrc.yml` file,
# both of which are necessary for Yarn to correctly install dependencies.
#
# Finally, we copy `packages/bind-mount/` since this package contains native
# code that will be built during the install process.
COPY --parents .yarn/ yarn.lock .yarnrc.yml **/package.json packages/bind-mount/ /PrairieLearn/
# Install Node dependencies.
#
# The `node-gyp` stuff is a workaround to a bug where multiple instances of `node-gyp`
# end up running at the same time and corrupt the Node headers that are being written
# to disk. This is somewhat of a known issue with Yarn and `node-gyp` specifically:
#
# https://github.com/nodejs/node-gyp/issues/1054
# https://github.com/yarnpkg/yarn/issues/1874
#
# By running `node-gyp install` at the beginning, we ensure that the later invocations
# of `node-gyp` will find the headers already installed and not try to install them
# again, thus avoiding the corruption issue.
#
# If the following issue is ever addressed, we can use that instead:
# https://github.com/yarnpkg/berry/issues/6339
RUN cd /PrairieLearn && yarn dlx node-gyp install && yarn install --immutable --inline-builds && yarn cache clean
# NOTE: Modify .dockerignore to allowlist files/directories to copy.
COPY . /PrairieLearn/
# set up PrairieLearn and run migrations to initialize the DB
RUN chmod +x /PrairieLearn/docker/init.sh \
&& mkdir /course{,{2..9}} \
&& mkdir -p /workspace_{main,host}_zips \
&& mkdir -p /jobs \
&& /PrairieLearn/docker/start_postgres.sh \
&& cd /PrairieLearn \
&& make build \
&& node apps/prairielearn/dist/server.js --migrate-and-exit \
&& su postgres -c "createuser -s root" \
&& /PrairieLearn/docker/start_postgres.sh stop \
&& /PrairieLearn/docker/gen_ssl.sh \
&& git config --global user.email "[email protected]" \
&& git config --global user.name "Dev User" \
&& git config --global safe.directory '*'
HEALTHCHECK CMD curl --fail http://localhost:3000/pl/webhooks/ping || exit 1
CMD /PrairieLearn/docker/init.sh