You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
325 B
17 lines
325 B
FROM ubuntu
|
|
|
|
ENV PROVISION_CONTEXT "production"
|
|
|
|
# Deploy scripts/configurations
|
|
COPY static/ /static
|
|
COPY tapit /tapit
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
run apt-get update
|
|
run apt-get install -y ca-certificates
|
|
|
|
# Harder to bypass
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
# Can be overwritten -- with run args
|
|
CMD ["/entrypoint.sh"]
|