mirror of
https://github.com/penpot/penpot.git
synced 2025-01-24 23:49:45 -05:00
🐳 🚧 Build release images
This commit is contained in:
parent
3447be86fb
commit
397cbbf01c
2 changed files with 22 additions and 11 deletions
|
@ -1,7 +1,8 @@
|
||||||
FROM ubuntu:xenial
|
FROM ubuntu:xenial
|
||||||
LABEL maintainer="Andrey Antukh <niwi@niwi.nz>"
|
LABEL maintainer="Andrey Antukh <niwi@niwi.nz>"
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN set -ex; \
|
||||||
|
apt-get update && \
|
||||||
apt-get install -yq \
|
apt-get install -yq \
|
||||||
locales \
|
locales \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
|
@ -39,7 +40,8 @@ RUN apt-get update && \
|
||||||
cd .. && \
|
cd .. && \
|
||||||
rm -rf ./imagemagick
|
rm -rf ./imagemagick
|
||||||
|
|
||||||
RUN useradd -m -g users -s /bin/bash uxbox; \
|
RUN set -ex; \
|
||||||
|
useradd -m -g users -s /bin/bash uxbox; \
|
||||||
passwd uxbox -d; \
|
passwd uxbox -d; \
|
||||||
echo "uxbox ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
|
echo "uxbox ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
|
||||||
|
|
||||||
|
@ -49,7 +51,8 @@ WORKDIR /home/uxbox
|
||||||
ENV NODE_VERSION=7.7.1
|
ENV NODE_VERSION=7.7.1
|
||||||
|
|
||||||
COPY ./scripts/lein /home/uxbox/.local/bin/lein
|
COPY ./scripts/lein /home/uxbox/.local/bin/lein
|
||||||
RUN git clone https://github.com/creationix/nvm.git .nvm; \
|
RUN set -ex; \
|
||||||
|
git clone https://github.com/creationix/nvm.git .nvm; \
|
||||||
bash -c "source .nvm/nvm.sh && nvm install $NODE_VERSION"; \
|
bash -c "source .nvm/nvm.sh && nvm install $NODE_VERSION"; \
|
||||||
bash -c "source .nvm/nvm.sh && nvm alias default $NODE_VERSION"; \
|
bash -c "source .nvm/nvm.sh && nvm alias default $NODE_VERSION"; \
|
||||||
bash -c "source .nvm/nvm.sh && nvm use default"; \
|
bash -c "source .nvm/nvm.sh && nvm use default"; \
|
||||||
|
@ -62,7 +65,8 @@ ENV PATH $NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH
|
||||||
|
|
||||||
# Copy backend source and build release
|
# Copy backend source and build release
|
||||||
COPY ./* /home/uxbox/backend/
|
COPY ./* /home/uxbox/backend/
|
||||||
RUN ls - l; \
|
RUN set -ex; \
|
||||||
|
ls -l; \
|
||||||
bash -c "/home/uxbox/backend/scripts/dist"
|
bash -c "/home/uxbox/backend/scripts/dist"
|
||||||
|
|
||||||
|
|
||||||
|
@ -79,7 +83,8 @@ VOLUME /srv/uxbox/resources/public
|
||||||
|
|
||||||
WORKDIR /srv/uxbox/
|
WORKDIR /srv/uxbox/
|
||||||
|
|
||||||
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen; \
|
RUN set -ex; \
|
||||||
|
echo "en_US.UTF-8 UTF-8" > /etc/locale.gen; \
|
||||||
locale-gen && update-locale LANG=en_US.UTF-8 LC_ALL=C.UTF-8; \
|
locale-gen && update-locale LANG=en_US.UTF-8 LC_ALL=C.UTF-8; \
|
||||||
mkdir -p /srv/uxbox/resources/public/media; \
|
mkdir -p /srv/uxbox/resources/public/media; \
|
||||||
mkdir -p /srv/uxbox/resources/public/static;
|
mkdir -p /srv/uxbox/resources/public/static;
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
FROM ubuntu:xenial
|
FROM ubuntu:xenial
|
||||||
LABEL maintainer="Andrey Antukh <niwi@niwi.nz>"
|
LABEL maintainer="Andrey Antukh <niwi@niwi.nz>"
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN set -ex; \
|
||||||
|
apt-get update && \
|
||||||
apt-get install -yq \
|
apt-get install -yq \
|
||||||
locales \
|
locales \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
|
@ -39,7 +40,8 @@ RUN apt-get update && \
|
||||||
cd .. && \
|
cd .. && \
|
||||||
rm -rf ./imagemagick
|
rm -rf ./imagemagick
|
||||||
|
|
||||||
RUN useradd -m -g users -s /bin/bash uxbox; \
|
RUN set -ex; \
|
||||||
|
useradd -m -g users -s /bin/bash uxbox; \
|
||||||
passwd uxbox -d; \
|
passwd uxbox -d; \
|
||||||
echo "uxbox ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
|
echo "uxbox ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
|
||||||
|
|
||||||
|
@ -49,7 +51,8 @@ WORKDIR /home/uxbox
|
||||||
ENV NODE_VERSION=7.7.1
|
ENV NODE_VERSION=7.7.1
|
||||||
|
|
||||||
COPY ./scripts/lein /home/uxbox/.local/bin/lein
|
COPY ./scripts/lein /home/uxbox/.local/bin/lein
|
||||||
RUN git clone https://github.com/creationix/nvm.git .nvm; \
|
RUN set -ex; \
|
||||||
|
git clone https://github.com/creationix/nvm.git .nvm; \
|
||||||
bash -c "source .nvm/nvm.sh && nvm install $NODE_VERSION"; \
|
bash -c "source .nvm/nvm.sh && nvm install $NODE_VERSION"; \
|
||||||
bash -c "source .nvm/nvm.sh && nvm alias default $NODE_VERSION"; \
|
bash -c "source .nvm/nvm.sh && nvm alias default $NODE_VERSION"; \
|
||||||
bash -c "source .nvm/nvm.sh && nvm use default"; \
|
bash -c "source .nvm/nvm.sh && nvm use default"; \
|
||||||
|
@ -64,7 +67,9 @@ ENV API_URL http://127.0.0.1:6060/api
|
||||||
|
|
||||||
# Copy frontend source and build release
|
# Copy frontend source and build release
|
||||||
COPY ./* /home/uxbox/frontend/
|
COPY ./* /home/uxbox/frontend/
|
||||||
RUN cd /frontend; \
|
RUN set -ex; \
|
||||||
|
ls - l; \
|
||||||
|
cd frontend; \
|
||||||
sed -i \
|
sed -i \
|
||||||
-e 's/"uxbox.config.url" ".*"/"uxbox.config.url" "${API_URL}/api"/g' \
|
-e 's/"uxbox.config.url" ".*"/"uxbox.config.url" "${API_URL}/api"/g' \
|
||||||
scripts/figwheel.clj; \
|
scripts/figwheel.clj; \
|
||||||
|
@ -79,10 +84,11 @@ FROM nginx:alpine
|
||||||
|
|
||||||
LABEL maintainer="mathieu.brunot at monogramm dot io"
|
LABEL maintainer="mathieu.brunot at monogramm dot io"
|
||||||
|
|
||||||
# Copy built app to wwwroot
|
# Copy built app to www root
|
||||||
COPY --from=0 /home/uxbox/frontend/dist /usr/share/nginx/html
|
COPY --from=0 /home/uxbox/frontend/dist /usr/share/nginx/html
|
||||||
|
|
||||||
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen; \
|
RUN set -ex; \
|
||||||
|
echo "en_US.UTF-8 UTF-8" > /etc/locale.gen; \
|
||||||
locale-gen && update-locale LANG=en_US.UTF-8 LC_ALL=C.UTF-8
|
locale-gen && update-locale LANG=en_US.UTF-8 LC_ALL=C.UTF-8
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue