Skip to content

Commit ede77dd

Browse files
committed
Fix info about installed libs
1 parent 9fcb8f0 commit ede77dd

File tree

5 files changed

+416
-246
lines changed

5 files changed

+416
-246
lines changed

Dockerfile.build

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
FROM --platform=amd64 zaioll/debian:stretch-slim as build
2+
3+
LABEL maintener 'Láyro Chrystofer <[email protected]>'
4+
5+
ENV php_version=7.4
6+
ENV usuario developer
7+
ENV HOME "/home/${usuario}"
8+
9+
#COPY install /install
10+
#COPY configure /configure
11+
#
12+
#RUN \
13+
# /install/requirements/pre-install \
14+
# && /install/download \
15+
# && /install/packages/install \
16+
# && /configure/_run.sh \
17+
# && DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y nginx \
18+
# && /install/post-install
19+
20+
COPY install/requirements /install/requirements
21+
RUN /install/requirements/pre-install
22+
23+
COPY install/download /install/download
24+
RUN /install/download
25+
26+
COPY install/packages /install/packages
27+
RUN /install/packages/install
28+
29+
COPY configure /configure
30+
RUN configure/_run.sh
31+
32+
COPY init /run/init
33+
34+
EXPOSE 80 8000
35+
36+
STOPSIGNAL SIGTERM
37+
CMD ["/bin/bash", "/run/init/start"]

0 commit comments

Comments
 (0)