nitrogen 0.2.5

Nitrogen is a tool for deploying web services to AWS Nitro Enclaves.
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM nginx:stable-alpine

RUN apk --no-cache add socat=1.7.4.3-r0

COPY index.html /usr/share/nginx/html/index.html

COPY run.sh ./
RUN ["chmod", "+x", "./run.sh"]

COPY app.sh ./
RUN ["chmod", "+x", "./app.sh"]

CMD ["/bin/sh", "/run.sh"]