-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support python 3.11 bytecode, fixes #282
- Loading branch information
1 parent
b16d7ce
commit 70fe4f5
Showing
4 changed files
with
155 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM python:3.11-alpine | ||
WORKDIR /app | ||
RUN pip3 install pyjsparser six | ||
RUN pip3 install tzlocal | ||
RUN apk add --update alpine-sdk | ||
RUN apk --no-cache --update add build-base | ||
RUN pip3 install numpy | ||
|
||
ADD . /app | ||
|
||
RUN ls | ||
#CMD ["python3", "js2py/utils/injector.py"] | ||
CMD ["python3", "simple_test.py"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters