Removed Docker files from project - not used by development team and is causing issues with new contributors (rightfully) believing we use it due to their existence
This commit is contained in:
parent
2fd5c918ce
commit
493a54759b
@ -1,8 +0,0 @@
|
||||
**
|
||||
|
||||
!src
|
||||
!types
|
||||
!tsconfig.base.json
|
||||
!tsconfig.json
|
||||
!package.json
|
||||
!typedoc.json
|
@ -1,20 +0,0 @@
|
||||
FROM node:16-buster AS builder
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json .
|
||||
RUN yarn
|
||||
|
||||
COPY tsconfig.json tsconfig.base.json ./
|
||||
COPY src ./src
|
||||
RUN yarn test:comp-linux
|
||||
|
||||
##############################################
|
||||
|
||||
FROM debian:buster
|
||||
|
||||
COPY --from=builder /app/bundle /bin/Aki-server
|
||||
|
||||
EXPOSE 6969
|
||||
|
||||
CMD ["/bin/Aki-server"]
|
@ -1,13 +0,0 @@
|
||||
FROM node:18-alpine as builder
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json .
|
||||
RUN npm i
|
||||
|
||||
COPY . .
|
||||
RUN npm run gen:docs
|
||||
|
||||
FROM nginx:stable-alpine3.17
|
||||
|
||||
COPY --from=builder /app/docs /usr/share/nginx/html
|
@ -1,10 +0,0 @@
|
||||
FROM node:lts-bullseye as builder
|
||||
|
||||
WORKDIR /app
|
||||
ARG PNPM_VERSION=7.25.1
|
||||
ENV PNPM_VERSION=$PNPM_VERSION
|
||||
|
||||
RUN curl -fsSL https://get.pnpm.io/install.sh | SHELL=`which bash` bash -
|
||||
ENV PATH="$PATH:/root/.local/share/pnpm/"
|
||||
|
||||
ENTRYPOINT [ "pnpm" ]
|
@ -1,11 +0,0 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
docs:
|
||||
image: registry.sp-tarkov.com/spt/aki-docs:latest
|
||||
ports:
|
||||
- 127.0.0.1:8006:80
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: "0.1"
|
Loading…
x
Reference in New Issue
Block a user