2022-04-29 12:53:48 -07:00
|
|
|
# syntax=docker.io/docker/dockerfile:1.3@sha256:42399d4635eddd7a9b8a24be879d2f9a930d0ed040a61324cfdf59ef1357b3b2
|
2023-05-19 17:34:06 -07:00
|
|
|
FROM const-gen AS const-export
|
2022-07-06 12:05:30 -07:00
|
|
|
FROM docker.io/python:3.10@sha256:eeed7cac682f9274d183f8a7533ee1360a26acb3616aa712b2be7896f80d8c5f
|
2022-04-29 12:53:48 -07:00
|
|
|
|
|
|
|
RUN python3 -m pip install virtualenv
|
|
|
|
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get -y install netcat
|
|
|
|
|
|
|
|
COPY Pipfile.lock Pipfile.lock
|
|
|
|
COPY Pipfile Pipfile
|
|
|
|
|
|
|
|
RUN python3 -m pip install pipenv
|
|
|
|
RUN pipenv install
|
|
|
|
RUN mkdir teal
|
|
|
|
|
|
|
|
COPY *.py .
|
2022-05-31 12:49:38 -07:00
|
|
|
COPY test/*.json .
|
2022-04-29 12:53:48 -07:00
|
|
|
COPY deploy.sh deploy.sh
|
2023-05-19 17:34:06 -07:00
|
|
|
COPY --from=const-export .env .env
|