mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-08 17:50:10 +00:00
2ed6224778
Add libasan and libubsan to fedora-base:v20, and build fedora:20 on top of it. This is so we can build and run the tests with the address and undefined behavior sanitizers.
11 lines
209 B
Docker
11 lines
209 B
Docker
FROM registry.gitlab.gnome.org/gnome/gtk/fedora-base:v20
|
|
|
|
ARG HOST_USER_ID=5555
|
|
ENV HOST_USER_ID ${HOST_USER_ID}
|
|
RUN useradd -u $HOST_USER_ID -ms /bin/bash user
|
|
|
|
USER user
|
|
WORKDIR /home/user
|
|
|
|
ENV LANG C.UTF-8
|