mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
feat(archival): ✨ open port 80 to prepare for exposing API endpoints
This commit is contained in:
parent
c92aeebcca
commit
1386474f18
2 changed files with 3 additions and 2 deletions
2
.github/README.md
vendored
2
.github/README.md
vendored
|
|
@ -28,7 +28,7 @@
|
|||
<a href="https://dev.azure.com/collinbarrett/FilterLists/_build/latest?definitionId=29"><img alt="Azure DevOps builds" src="https://dev.azure.com/collinbarrett/FilterLists/_apis/build/status/Archival%20API?branchName=master" /></a>
|
||||
<a href="https://dev.azure.com/collinbarrett/FilterLists/_release?definitionId=7"><img alt="Azure DevOps releases" src="https://vsrm.dev.azure.com/collinbarrett/_apis/public/Release/badge/b06a3d5c-459e-4789-9735-0f5969006fe8/7/8" /></a>
|
||||
<a href="https://github.com/users/collinbarrett/packages/container/package/filterlists-archival-api"><img alt="Docker Image" src="https://img.shields.io/badge/docker%20image-archival--api-blue" /></a>
|
||||
<br/>A .NET Core app archiving copies of FilterLists for mirrors and future analysis.</p>
|
||||
<br/>An ASP.NET Core app archiving and serving copies of FilterLists for mirrors and analysis.</p>
|
||||
|
||||
<p align="center"><b>Reverse Proxy:</b>
|
||||
<a href="https://dev.azure.com/collinbarrett/FilterLists/_build/latest?definitionId=21"><img alt="Azure DevOps builds" src="https://dev.azure.com/collinbarrett/FilterLists/_apis/build/status/Reverse%20Proxy?branchName=master" /></a>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
# init base
|
||||
FROM mcr.microsoft.com/dotnet/core/runtime-deps:3.1-alpine3.12 AS base
|
||||
LABEL org.opencontainers.image.description="filterlists.com | github.com/collinbarrett/filterlists | A .NET Core app archiving copies of FilterLists for mirrors and future analysis."
|
||||
LABEL org.opencontainers.image.description="filterlists.com | github.com/collinbarrett/filterlists | An ASP.NET Core app archiving and serving copies of FilterLists for mirrors and analysis."
|
||||
WORKDIR /app
|
||||
EXPOSE 80
|
||||
|
||||
# init build
|
||||
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-alpine3.12 AS build
|
||||
|
|
|
|||
Loading…
Reference in a new issue