Skip to content

Instantly share code, notes, and snippets.

@jeffa
Last active April 20, 2024 15:51
Show Gist options
  • Save jeffa/78148e4197186b562e2985d620548ea1 to your computer and use it in GitHub Desktop.
Save jeffa/78148e4197186b562e2985d620548ea1 to your computer and use it in GitHub Desktop.
Dockerfile for ubuntu-boot.sh
# 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