-
Notifications
You must be signed in to change notification settings - Fork 0
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
5 changed files
with
416 additions
and
246 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 |
---|---|---|
@@ -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"] |
Oops, something went wrong.