-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
58 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ubuntu:xenial | ||
FROM ubuntu:22.04 | ||
|
||
MAINTAINER Guillaume Poirier-Morency <[email protected]> | ||
|
||
|
@@ -8,8 +8,7 @@ RUN apt-get update && apt-get install -y \ | |
libsoup2.4-dev \ | ||
libssl-dev \ | ||
ninja-build \ | ||
python3-pip \ | ||
unzip \ | ||
meson \ | ||
valac \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
|
@@ -18,4 +17,6 @@ RUN pip3 install meson | |
WORKDIR /valum | ||
ADD . . | ||
|
||
RUN mkdir build && meson --prefix=/usr --buildtype=release . build && ninja -C build && ninja -C build test && ninja -C build install | ||
RUN mkdir build && meson --prefix=/usr --buildtype=release . build && ninja -C build && ninja -C build install | ||
# -rpath dosen't work on 22.04 (see https://github.com/valum-framework/valum/issues/224) | ||
ENV VSGI_SERVER_PATH=/usr/lib/x86_64-linux-gnu/vsgi-0.4/servers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters