mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-04-28 07:59:26 +03:00
26 lines
877 B
Docker
26 lines
877 B
Docker
FROM quay.io/epicmorg/debian:bookworm-nodejs23
|
|
LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
##################################################################
|
|
# Installing vk2discord
|
|
##################################################################
|
|
WORKDIR /usr/src/vk2discord
|
|
|
|
RUN git clone https://github.com/MrZillaGold/VK2Discord.git /usr/src/vk2discord
|
|
|
|
RUN npm config set engine-strict false && \
|
|
npm install
|
|
|
|
##################################################################
|
|
# cleaninig up
|
|
##################################################################
|
|
RUN apt-get clean -y && \
|
|
apt-get clean all -y && \
|
|
apt-get autoclean -y && \
|
|
rm -rfv /var/lib/apt/lists/* && \
|
|
rm -rfv /tmp/vk2discord/* && \
|
|
rm -rfv /var/cache/apt/archives/*.deb
|
|
|
|
CMD ["npm", "start"]
|