Skip to content

Commit

Permalink
initial commit (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lionel Untereiner authored Jan 31, 2024
1 parent 6b8eec3 commit e2d5f3e
Show file tree
Hide file tree
Showing 6 changed files with 10,709 additions and 0 deletions.
12 changes: 12 additions & 0 deletions dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM python:3.8

ENV SRC_DIR /usr/bin/src/webapp/src

COPY . ${SRC_DIR}/

WORKDIR ${SRC_DIR}

#python sends print and log statements directly to stdout
ENV PYTHONUNBUFFERED=1

CMD ["python", "servewasm.py", "--port", "80"]
Loading

0 comments on commit e2d5f3e

Please sign in to comment.