Skip to content

Commit

Permalink
Fix info about installed libs
Browse files Browse the repository at this point in the history
  • Loading branch information
zaioll committed Jan 1, 2022
1 parent 9fcb8f0 commit ede77dd
Show file tree
Hide file tree
Showing 5 changed files with 416 additions and 246 deletions.
37 changes: 37 additions & 0 deletions Dockerfile.build
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
FROM --platform=amd64 zaioll/debian:stretch-slim as build

LABEL maintener 'Láyro Chrystofer <zaioll@protonmail.com>'

ENV php_version=7.4
ENV usuario developer
ENV HOME "/home/${usuario}"

#COPY install /install
#COPY configure /configure
#
#RUN \
# /install/requirements/pre-install \
# && /install/download \
# && /install/packages/install \
# && /configure/_run.sh \
# && DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y nginx \
# && /install/post-install

COPY install/requirements /install/requirements
RUN /install/requirements/pre-install

COPY install/download /install/download
RUN /install/download

COPY install/packages /install/packages
RUN /install/packages/install

COPY configure /configure
RUN configure/_run.sh

COPY init /run/init

EXPOSE 80 8000

STOPSIGNAL SIGTERM
CMD ["/bin/bash", "/run/init/start"]
Loading

0 comments on commit ede77dd

Please sign in to comment.