feat: Initial code drop
All checks were successful
Build Docker / BuildImage (push) Successful in 2m23s
All checks were successful
Build Docker / BuildImage (push) Successful in 2m23s
This commit is contained in:
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
# Start from a lightweight nginx base image
|
||||
FROM nginx:alpine
|
||||
|
||||
# Set environment variable with a default (can be overridden at runtime)
|
||||
ENV REDIRECT_URL="https://example.com"
|
||||
|
||||
# Copy in a custom nginx template
|
||||
COPY default.conf.template /etc/nginx/templates/default.conf.template
|
||||
|
||||
# Expose HTTP port
|
||||
EXPOSE 80
|
||||
Reference in New Issue
Block a user