Sign inSign up

jotools/express-demo

By jotools

Updated over 2 years ago

Provides the Express Demo as a Web Application.

Image
Developer tools
0

323

jotools/express-demo repository overview

Express Demo

Express is a Xojo API 2 compilant speed optimized webserver that is orignally based on AloeExpress by Tim Dietrich.

This Image provides the Express-Demo-Console.xojo_project as a Web Application (on Port 80). The Express Application is written in Xojo.

Docker Image Information

Use at your own risk...

  • Express Console App: Express-Demo-Console
  • Port: 80
  • Note: Add an Environment Variable for the Containers based on this Image: EXPRESS_DEMO=1
  • Image is based on ubuntu:22.04
  • Source Code: Express

Dockerfile

#BASE IMAGE
FROM ubuntu:22.04

#INSTALL REQUIRED LIBRARIES
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y libunwind8 libglib2.0 libsoup2.4-1

#ADD EXPRESS CONSOLE APP TO DOCKER IMAGE
ADD / /app/

#EXPOSE PORT 80 AND RUN EXPRESS CONSOLE APP ON PORT 80
EXPOSE 80
WORKDIR /app
CMD /app/Express-Demo-Console --Port=80

Tag summary

Content type

Image

Digest

sha256:89dd98553

Size

181.7 MB

Last updated

over 2 years ago

docker pull jotools/express-demo