View template_html_js.html
<!DOCTYPE html> | |
<html lang="en"></html> | |
<head> | |
<meta charset="UTF-8"> | |
<title> Test </title> | |
<style> | |
body { | |
background-color: lightcoral; | |
} | |
</style> |
View Dockerfile
# build with: docker build -f Dockerfile -t image_name . | |
# run with: docker run -it --name container_name image_name /bin/bash | |
# run exposing ports and sharing volume: | |
# docker run -it --name container_name -p 8000:8000 --mount type=bind,src=/your/path/to/local/source/code,dst=/src image_name /bin/bash | |
FROM debian | |
RUN apt-get update | |
ENV DEBIAN_FRONTEND noninteractive |