remove Dockerfile
This commit is contained in:
parent
5ed833490d
commit
808b5715e5
2 changed files with 1 additions and 34 deletions
|
@ -1,32 +0,0 @@
|
|||
FROM ubuntu:22.04
|
||||
|
||||
# Avoid prompts from apt
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# Install essential tools
|
||||
RUN apt-get update && apt-get install -y \
|
||||
git \
|
||||
curl \
|
||||
wget \
|
||||
openssh-client \
|
||||
ca-certificates \
|
||||
build-essential \
|
||||
nodejs \
|
||||
npm \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Setup Rust
|
||||
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
||||
ENV PATH="/root/.cargo/bin:${PATH}"
|
||||
|
||||
# Verify installations
|
||||
RUN node --version && \
|
||||
npm --version && \
|
||||
rustc --version && \
|
||||
cargo --version
|
||||
|
||||
# Set working directory
|
||||
WORKDIR /github/workspace
|
||||
|
||||
# Default command (can be overridden)
|
||||
CMD ["/bin/bash"]
|
|
@ -11,8 +11,7 @@ jobs:
|
|||
update-feed:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
# Reference the Dockerfile in your repository
|
||||
dockerfile: .forgejo/workflows/Dockerfile
|
||||
image: ubuntu:22.04
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
|
|
Loading…
Add table
Reference in a new issue