Skip to content

Commit

Permalink
Dockerfile and pip dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSchiavini committed Nov 13, 2023
1 parent 349beab commit a700155
Show file tree
Hide file tree
Showing 4 changed files with 2,512 additions and 1,472 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM nikolaik/python-nodejs:python3.10-nodejs20

WORKDIR /usr/app
COPY package*.json ./
RUN npm ci \
&& npm cache clean --force

COPY requirements.in ./
RUN pip install -r requirements.in

COPY . .
CMD ape test
Loading

0 comments on commit a700155

Please sign in to comment.