Initial commit
This commit is contained in:
20
misc/containers/frontend/Dockerfile
Normal file
20
misc/containers/frontend/Dockerfile
Normal file
@ -0,0 +1,20 @@
|
||||
FROM alpine:3.11
|
||||
|
||||
ARG HTTP_PROXY=
|
||||
ARG HTTPS_PROXY=
|
||||
ARG http_proxy=
|
||||
ARG https_proxy=
|
||||
|
||||
ENV HTTP_PROXY=
|
||||
ENV HTTPS_PROXY=
|
||||
ENV http_proxy=
|
||||
ENV https_proxy=
|
||||
|
||||
RUN apk add --no-cache nodejs bash
|
||||
|
||||
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint
|
||||
RUN chmod +x /usr/local/bin/docker-entrypoint
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
CMD /usr/local/bin/docker-entrypoint
|
1
misc/containers/frontend/docker-entrypoint.sh
Normal file
1
misc/containers/frontend/docker-entrypoint.sh
Normal file
@ -0,0 +1 @@
|
||||
#!/bin/sh
|
Reference in New Issue
Block a user