Skip to content

Commit

Permalink
Made a simple docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
NickSwainston committed Nov 22, 2022
1 parent 5b180fc commit 3ce5273
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM python:3.9

LABEL maintainer="Nick Swainston <nickswainston@gmail.com>"

# Work in a temp build directory
WORKDIR /tmp/build
ADD . /tmp/build

# Install using pip
RUN pip install . && \
rm -rf /tmp/build

0 comments on commit 3ce5273

Please sign in to comment.