build prospect intelligence platform MVP
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
FROM python:3.13-alpine
|
||||
RUN addgroup -S app && adduser -S -G app app
|
||||
WORKDIR /srv
|
||||
COPY index.html /srv/index.html
|
||||
COPY styles.css /srv/styles.css
|
||||
COPY app.js /srv/app.js
|
||||
COPY healthz /srv/healthz
|
||||
RUN chown -R app:app /srv
|
||||
USER app
|
||||
EXPOSE 8080
|
||||
CMD ["python", "-m", "http.server", "8080", "--bind", "0.0.0.0", "--directory", "/srv"]
|
||||
Reference in New Issue
Block a user