Last active
April 20, 2024 15:51
-
-
Save jeffa/78148e4197186b562e2985d620548ea1 to your computer and use it in GitHub Desktop.
Dockerfile for ubuntu-boot.sh
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
# docker build -t myorg/myapp:dev . | |
FROM myorg/perl:5.38 | |
ADD . /app | |
WORKDIR /app | |
RUN cpanm --notest \ | |
JSON Spreadsheet::Read HTML::TableExtract Imager::File::PNG \ | |
Spreadsheet::ParseExcel Spreadsheet::Engine DBD::CSV Data::SpreadPagination \ | |
YAML Dancer Template Text::CSV Spreadsheet::ParseXLSX \ | |
DBIx::HTML Games::Sudoku::Component Text::FIGlet JavaScript::Minifier Encode::Wechsler | |
EXPOSE 3000 | |
CMD ["perl", "bin/app.pl"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment