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
[package] | |
name = "actix-web-test-https" | |
version = "0.1.0" | |
authors = ["Stefano Pogliani <[email protected]>"] | |
edition = "2018" | |
[[bin]] | |
name = "actix-web-test-https" | |
path = "main.rs" |
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
FROM debian:jessie | |
RUN apt-get update \ | |
&& apt-get install -y python-pip \ | |
&& pip install --upgrade pip flask | |
COPY ./server.py /server.py | |
EXPOSE 5000 | |
ENV FLASK_APP=server.py |