mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
263 B
8 lines
263 B
FROM duktape-base-ubuntu-20.04-x64:latest
|
|
|
|
COPY --chown=duktape:duktape run.sh .
|
|
RUN chmod 755 run.sh
|
|
|
|
# Result is written to stdout as a ZIP, which allows caller to extract
|
|
# result without uid issues (ZIP tolerates leading garbage).
|
|
ENTRYPOINT ["/work/run.sh"]
|
|
|