C_App and ython directories

This commit is contained in:
Niklas Heinrich 2025-03-12 12:56:41 +01:00
parent 3b748689ba
commit df3452580b
4 changed files with 44 additions and 0 deletions

13
C_App/Dockerfile Normal file
View File

@ -0,0 +1,13 @@
# use alpine as base image
FROM alpine AS build-env
# install build-base meta package inside build-env container
RUN sed -i 's/https/http/g' /etc/apk/repositories
RUN apk add --no-cache build-base
# change directory to /app
WORKDIR /app
# copy all files from current directory inside the build-env container
COPY . .
# Compile the source code and generate hello binary executable file
RUN gcc -o hello helloDocker.c
# run the program
CMD ["/app/hello"]

7
C_App/helloDocker.c Normal file
View File

@ -0,0 +1,7 @@
#include <stdio.h>
int main()
{
printf("Hello from our first Docker container\n");
return 0;
}

17
Python_App/app.py Normal file
View File

@ -0,0 +1,17 @@
from flask import Flask
import os
app = Flask(__name__)
@app.route('/')
def index():
return 'Server Works!\n'
@app.route('/greet')
def say_hello():
return 'Hello from Server'
if __name__ == "__main__":
port = int(os.environ.get('PORT', 5000))
app.run(debug=True, host='0.0.0.0', port=port)

View File

@ -0,0 +1,7 @@
blinker==1.7.0
click==8.1.7
Flask==3.0.2
itsdangerous==2.1.2
Jinja2==3.1.3
MarkupSafe==2.1.5
Werkzeug==3.0.1