mirror of
https://github.com/wekan/wekan.git
synced 2026-01-31 05:35:16 +01:00
Fixed endless compilation devcontainer, debugging
This commit is contained in:
parent
4b06e2188c
commit
dbdb26a044
5 changed files with 48 additions and 7 deletions
|
|
@ -1,7 +1,7 @@
|
|||
FROM ubuntu:disco
|
||||
LABEL maintainer="sgr"
|
||||
|
||||
ENV BUILD_DEPS="gnupg gosu bsdtar wget curl bzip2 g++ build-essential python git ca-certificates"
|
||||
ENV BUILD_DEPS="gnupg gosu bsdtar wget curl bzip2 g++ build-essential python git ca-certificates iproute2"
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
ENV \
|
||||
|
|
@ -145,3 +145,16 @@ RUN set -o xtrace \
|
|||
&& sh /home/wekan/install-meteor.sh
|
||||
|
||||
ENV PATH=$PATH:$HOME/.meteor/
|
||||
|
||||
# Copy source dir
|
||||
USER root
|
||||
|
||||
RUN set -o xtrace \
|
||||
&& mkdir /home/wekan/app
|
||||
|
||||
COPY ${SRC_PATH} /home/wekan/app/
|
||||
|
||||
RUN set -o xtrace \
|
||||
&& chown -R wekan:wekan /home/wekan/app /home/wekan/.meteor
|
||||
|
||||
USER wekan
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue